datadog-ruby_core_source 3.4.0 → 3.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.datadog.md +4 -0
- data/README.md +8 -5
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ccan/build_assert/build_assert.h +40 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ccan/check_type/check_type.h +63 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ccan/container_of/container_of.h +142 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ccan/list/list.h +791 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ccan/str/str.h +17 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/id.h +352 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/id_table.h +39 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/array.h +152 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/basic_operators.h +65 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/bignum.h +244 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/bits.h +650 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/class.h +283 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/cmdlineopt.h +61 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/compar.h +29 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/compile.h +34 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/compilers.h +107 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/complex.h +29 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/cont.h +35 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/dir.h +16 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/enc.h +19 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/encoding.h +38 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/enum.h +18 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/enumerator.h +21 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/error.h +244 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/eval.h +33 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/file.h +38 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/fixnum.h +185 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/gc.h +333 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/hash.h +193 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/imemo.h +257 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/inits.h +47 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/io.h +143 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/load.h +18 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/loadpath.h +16 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/math.h +23 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/missing.h +19 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/numeric.h +274 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/object.h +63 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/parse.h +131 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/proc.h +30 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/process.h +124 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/ractor.h +10 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/random.h +17 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/range.h +40 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/rational.h +71 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/re.h +28 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/ruby_parser.h +102 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/sanitizers.h +330 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/serial.h +23 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/signal.h +24 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/st.h +11 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/static_assert.h +16 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/string.h +199 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/struct.h +119 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/symbol.h +47 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/thread.h +108 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/time.h +37 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/transcode.h +23 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/util.h +27 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/variable.h +70 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/vm.h +137 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/warnings.h +16 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal.h +108 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/iseq.h +351 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/method.h +258 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/node.h +122 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/parser_st.h +162 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/parser_value.h +106 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/ast.h +7964 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/defines.h +260 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/diagnostic.h +451 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/encoding.h +283 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/extension.h +19 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/node.h +129 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/options.h +442 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/pack.h +163 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/parser.h +933 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/prettyprint.h +34 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/prism.h +383 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/regexp.h +43 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/static_literals.h +121 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_buffer.h +228 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_char.h +204 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_constant_pool.h +218 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_integer.h +126 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_list.h +97 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_memchr.h +29 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_newline_list.h +113 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_string.h +190 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_strncasecmp.h +32 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_strpbrk.h +46 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/version.h +29 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism_compile.h +105 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ractor_core.h +382 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ruby_assert.h +14 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ruby_atomic.h +23 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/rubyparser.h +1380 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/shape.h +234 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/thread_none.h +21 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/thread_pthread.h +167 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/vm_core.h +2235 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/vm_debug.h +124 -0
- data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/vm_opts.h +67 -0
- data/lib/datadog/ruby_core_source/version.rb +1 -1
- metadata +105 -2
@@ -0,0 +1,21 @@
|
|
1
|
+
#ifndef INTERNAL_ENUMERATOR_H /*-*-C-*-vi:se ft=c:*/
|
2
|
+
#define INTERNAL_ENUMERATOR_H
|
3
|
+
/**
|
4
|
+
* @author Ruby developers <ruby-core@ruby-lang.org>
|
5
|
+
* @copyright This file is a part of the programming language Ruby.
|
6
|
+
* Permission is hereby granted, to either redistribute and/or
|
7
|
+
* modify this file, provided that the conditions mentioned in the
|
8
|
+
* file COPYING are met. Consult the file for details.
|
9
|
+
* @brief Internal header for Enumerator.
|
10
|
+
*/
|
11
|
+
#include "ruby/ruby.h" /* for VALUE */
|
12
|
+
#include "ruby/intern.h" /* for rb_enumerator_size_func */
|
13
|
+
|
14
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
15
|
+
/* enumerator.c (export) */
|
16
|
+
VALUE rb_arith_seq_new(VALUE obj, VALUE meth, int argc, VALUE const *argv,
|
17
|
+
rb_enumerator_size_func *size_fn,
|
18
|
+
VALUE beg, VALUE end, VALUE step, int excl);
|
19
|
+
RUBY_SYMBOL_EXPORT_END
|
20
|
+
|
21
|
+
#endif /* INTERNAL_ENUMERATOR_H */
|
@@ -0,0 +1,244 @@
|
|
1
|
+
#ifndef INTERNAL_ERROR_H /*-*-C-*-vi:se ft=c:*/
|
2
|
+
#define INTERNAL_ERROR_H
|
3
|
+
/**
|
4
|
+
* @author Ruby developers <ruby-core@ruby-lang.org>
|
5
|
+
* @copyright This file is a part of the programming language Ruby.
|
6
|
+
* Permission is hereby granted, to either redistribute and/or
|
7
|
+
* modify this file, provided that the conditions mentioned in the
|
8
|
+
* file COPYING are met. Consult the file for details.
|
9
|
+
* @brief Internal header for Exception.
|
10
|
+
*/
|
11
|
+
#include "ruby/internal/config.h"
|
12
|
+
#include <stdarg.h> /* for va_list */
|
13
|
+
#include "internal/string.h" /* for rb_fstring_cstr */
|
14
|
+
#include "ruby/internal/stdbool.h" /* for bool */
|
15
|
+
#include "ruby/encoding.h" /* for rb_encoding */
|
16
|
+
#include "ruby/intern.h" /* for rb_exc_raise */
|
17
|
+
#include "ruby/ruby.h" /* for enum ruby_value_type */
|
18
|
+
|
19
|
+
#ifdef Check_Type
|
20
|
+
# undef Check_Type /* in ruby/ruby.h */
|
21
|
+
#endif
|
22
|
+
|
23
|
+
#ifdef rb_raise_static
|
24
|
+
# undef rb_raise_static
|
25
|
+
# undef rb_sys_fail_path
|
26
|
+
# undef rb_syserr_fail_path
|
27
|
+
#endif
|
28
|
+
|
29
|
+
#define rb_raise_static(e, m) \
|
30
|
+
rb_raise_cstr_i((e), rb_str_new_static((m), rb_strlen_lit(m)))
|
31
|
+
#ifdef RUBY_FUNCTION_NAME_STRING
|
32
|
+
# define rb_syserr_fail_path(err, path) rb_syserr_fail_path_in(RUBY_FUNCTION_NAME_STRING, (err), (path))
|
33
|
+
# define rb_syserr_new_path(err, path) rb_syserr_new_path_in(RUBY_FUNCTION_NAME_STRING, (err), (path))
|
34
|
+
#else
|
35
|
+
# define rb_syserr_fail_path(err, path) rb_syserr_fail_str((err), (path))
|
36
|
+
# define rb_syserr_new_path(err, path) rb_syserr_new_str((err), (path))
|
37
|
+
#endif
|
38
|
+
|
39
|
+
#define rb_sys_fail(mesg) \
|
40
|
+
do { \
|
41
|
+
int errno_to_fail = errno; \
|
42
|
+
rb_syserr_fail(errno_to_fail, (mesg)); \
|
43
|
+
} while (0)
|
44
|
+
|
45
|
+
#define rb_sys_fail_str(mesg) \
|
46
|
+
do { \
|
47
|
+
int errno_to_fail = errno; \
|
48
|
+
rb_syserr_fail_str(errno_to_fail, (mesg)); \
|
49
|
+
} while (0)
|
50
|
+
|
51
|
+
#define rb_sys_fail_path(path) \
|
52
|
+
do { \
|
53
|
+
int errno_to_fail = errno; \
|
54
|
+
rb_syserr_fail_path(errno_to_fail, (path)); \
|
55
|
+
} while (0)
|
56
|
+
|
57
|
+
#define rb_sys_fail_sprintf(...) \
|
58
|
+
do { \
|
59
|
+
int errno_to_fail = errno; \
|
60
|
+
rb_syserr_fail_str(errno_to_fail, rb_sprintf("" __VA_ARGS__)); \
|
61
|
+
} while (0)
|
62
|
+
|
63
|
+
/* error.c */
|
64
|
+
extern long rb_backtrace_length_limit;
|
65
|
+
extern VALUE rb_eEAGAIN;
|
66
|
+
extern VALUE rb_eEWOULDBLOCK;
|
67
|
+
extern VALUE rb_eEINPROGRESS;
|
68
|
+
RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT, 3, 0)
|
69
|
+
void rb_report_bug_valist(VALUE file, int line, const char *fmt, va_list args);
|
70
|
+
NORETURN(void rb_async_bug_errno(const char *,int));
|
71
|
+
const char *rb_builtin_type_name(int t);
|
72
|
+
const char *rb_builtin_class_name(VALUE x);
|
73
|
+
PRINTF_ARGS(void rb_warn_deprecated(const char *fmt, const char *suggest, ...), 1, 3);
|
74
|
+
PRINTF_ARGS(void rb_warn_deprecated_to_remove(const char *removal, const char *fmt, const char *suggest, ...), 2, 4);
|
75
|
+
PRINTF_ARGS(void rb_warn_reserved_name(const char *removal, const char *fmt, ...), 2, 3);
|
76
|
+
#if RUBY_DEBUG
|
77
|
+
# include "ruby/version.h"
|
78
|
+
# define RUBY_VERSION_SINCE(major, minor) (RUBY_API_VERSION_CODE >= (major * 10000) + (minor) * 100)
|
79
|
+
# define RUBY_VERSION_BEFORE(major, minor) (RUBY_API_VERSION_CODE < (major * 10000) + (minor) * 100)
|
80
|
+
# if defined(RBIMPL_WARNING_PRAGMA0)
|
81
|
+
# define RBIMPL_TODO0(x) RBIMPL_WARNING_PRAGMA0(message(x))
|
82
|
+
# elif RBIMPL_COMPILER_SINCE(MSVC, 12, 0, 0)
|
83
|
+
# define RBIMPL_TODO0(x) __pragma(message(x))
|
84
|
+
# endif
|
85
|
+
|
86
|
+
# if RBIMPL_HAS_ATTRIBUTE(diagnose_if) || defined(__OPTIMIZE__)
|
87
|
+
|
88
|
+
#define RUBY_VERSION_isdigit(c) ('0'<=(c)&&(c)<='9')
|
89
|
+
// upto 99
|
90
|
+
#define RUBY_VERSION__number_len(v, ofs) \
|
91
|
+
(!RUBY_VERSION_isdigit((v)[ofs]) ? \
|
92
|
+
0 : !RUBY_VERSION_isdigit((v)[(ofs) + 1]) ? 1 : 2)
|
93
|
+
#define RUBY_VERSION__to_number(v, ofs) \
|
94
|
+
(!RUBY_VERSION_isdigit((v)[ofs]) ? \
|
95
|
+
0 : !RUBY_VERSION_isdigit((v)[(ofs) + 1]) ? \
|
96
|
+
((v)[ofs]-'0') : \
|
97
|
+
(((v)[ofs]-'0')*10+(v)[(ofs)+1]-'0'))
|
98
|
+
|
99
|
+
#define RUBY_VERSION_CODE_FROM_MAJOR_MINOR_STRING(v) \
|
100
|
+
(RUBY_VERSION__to_number(v, 0) * 10000 + \
|
101
|
+
((v)[RUBY_VERSION__number_len(v, 0)] == '.' ? \
|
102
|
+
RUBY_VERSION__to_number(v, RUBY_VERSION__number_len(v, 0)+1) * 100 : 0))
|
103
|
+
#define RUBY_VERSION_STRING_SINCE(v) (RUBY_API_VERSION_CODE >= RUBY_VERSION_CODE_FROM_MAJOR_MINOR_STRING(v))
|
104
|
+
#define RUBY_VERSION_STRING_BEFORE(v) (RUBY_API_VERSION_CODE < RUBY_VERSION_CODE_FROM_MAJOR_MINOR_STRING(v))
|
105
|
+
|
106
|
+
# if RBIMPL_HAS_ATTRIBUTE(diagnose_if)
|
107
|
+
RBIMPL_ATTR_FORCEINLINE()
|
108
|
+
static void
|
109
|
+
rb_deprecated_method_to_be_removed(const char *removal)
|
110
|
+
RBIMPL_ATTR_DIAGNOSE_IF(!RUBY_VERSION_isdigit(removal[0]), "malformed version number", "error")
|
111
|
+
RBIMPL_ATTR_DIAGNOSE_IF(RUBY_VERSION_STRING_SINCE(removal), "deprecated method to be removed", "error")
|
112
|
+
{
|
113
|
+
}
|
114
|
+
|
115
|
+
RBIMPL_ATTR_FORCEINLINE()
|
116
|
+
static void
|
117
|
+
rb_diagnose_reserved_name_at(const char *coming)
|
118
|
+
RBIMPL_ATTR_DIAGNOSE_IF(!RUBY_VERSION_isdigit(coming[0]), "malformed version number", "error")
|
119
|
+
RBIMPL_ATTR_DIAGNOSE_IF(RUBY_VERSION_STRING_SINCE(coming), "reserved name already in use", "error")
|
120
|
+
{
|
121
|
+
}
|
122
|
+
# else
|
123
|
+
RBIMPL_ATTR_ERROR(("deprecated"))
|
124
|
+
void rb_deprecated_method_to_be_removed(const char *);
|
125
|
+
# define rb_deprecated_method_to_be_removed(removal) \
|
126
|
+
(sizeof(char[1-2*(!RUBY_VERSION_isdigit(removal[0]) || RUBY_VERSION_STRING_SINCE(removal))])!=1 ? \
|
127
|
+
rb_deprecated_method_to_be_removed(removal) : \
|
128
|
+
RBIMPL_ASSERT_NOTHING)
|
129
|
+
|
130
|
+
RBIMPL_ATTR_ERROR(("deprecated"))
|
131
|
+
void rb_diagnose_reserved_name_at(const char *);
|
132
|
+
# define rb_diagnose_reserved_name_at(coming) \
|
133
|
+
(sizeof(char[1-2*(!RUBY_VERSION_isdigit(coming[0]) || RUBY_VERSION_STRING_SINCE(coming))])!=1 ? \
|
134
|
+
rb_diagnose_reserved_name_at(coming) : \
|
135
|
+
RBIMPL_ASSERT_NOTHING)
|
136
|
+
|
137
|
+
# endif
|
138
|
+
# define rb_warn_deprecated_to_remove_at(removal, ...) \
|
139
|
+
(rb_deprecated_method_to_be_removed(#removal), \
|
140
|
+
rb_warn_deprecated_to_remove(#removal, __VA_ARGS__))
|
141
|
+
|
142
|
+
# define rb_warn_reserved_name_at(coming, ...) \
|
143
|
+
(rb_diagnose_reserved_name_at(#coming), \
|
144
|
+
rb_warn_reserved_name(#coming, __VA_ARGS__))
|
145
|
+
# endif
|
146
|
+
#endif
|
147
|
+
#ifndef rb_warn_deprecated_to_remove_at
|
148
|
+
# define rb_warn_deprecated_to_remove_at(removal, ...) \
|
149
|
+
rb_warn_deprecated_to_remove(#removal, __VA_ARGS__)
|
150
|
+
#endif
|
151
|
+
#ifndef rb_warn_reserved_name_at
|
152
|
+
# define rb_warn_reserved_name_at(removal, ...) \
|
153
|
+
rb_warn_reserved_name(#removal, __VA_ARGS__)
|
154
|
+
#endif
|
155
|
+
#ifndef RUBY_VERSION_SINCE
|
156
|
+
# define RUBY_VERSION_SINCE(major, minor) 0
|
157
|
+
#endif
|
158
|
+
#ifndef RUBY_VERSION_BEFORE
|
159
|
+
# define RUBY_VERSION_BEFORE(major, minor) 0
|
160
|
+
#endif
|
161
|
+
#ifndef RBIMPL_TODO0
|
162
|
+
# define RBIMPL_TODO0(x)
|
163
|
+
#endif
|
164
|
+
#define RBIMPL_TODO(message) RBIMPL_TODO0("TODO: " message)
|
165
|
+
RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT, 6, 0)
|
166
|
+
VALUE rb_syntax_error_append(VALUE, VALUE, int, int, rb_encoding*, const char*, va_list);
|
167
|
+
PRINTF_ARGS(void rb_enc_warn(rb_encoding *enc, const char *fmt, ...), 2, 3);
|
168
|
+
PRINTF_ARGS(void rb_sys_enc_warning(rb_encoding *enc, const char *fmt, ...), 2, 3);
|
169
|
+
PRINTF_ARGS(void rb_syserr_enc_warning(int err, rb_encoding *enc, const char *fmt, ...), 3, 4);
|
170
|
+
PRINTF_ARGS(void rb_enc_compile_warning(rb_encoding *enc, const char *file, int line, const char *fmt, ...), 4, 5);
|
171
|
+
PRINTF_ARGS(void rb_enc_compile_warn(rb_encoding *enc, const char *file, int line, const char *fmt, ...), 4, 5);
|
172
|
+
rb_warning_category_t rb_warning_category_from_name(VALUE category);
|
173
|
+
bool rb_warning_category_enabled_p(rb_warning_category_t category);
|
174
|
+
VALUE rb_name_err_new(VALUE mesg, VALUE recv, VALUE method);
|
175
|
+
VALUE rb_nomethod_err_new(VALUE mesg, VALUE recv, VALUE method, VALUE args, int priv);
|
176
|
+
VALUE rb_key_err_new(VALUE mesg, VALUE recv, VALUE name);
|
177
|
+
PRINTF_ARGS(VALUE rb_warning_string(const char *fmt, ...), 1, 2);
|
178
|
+
RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT, 2, 0)
|
179
|
+
NORETURN(void rb_vraise(VALUE, const char *, va_list));
|
180
|
+
NORETURN(static inline void rb_raise_cstr(VALUE etype, const char *mesg));
|
181
|
+
NORETURN(static inline void rb_raise_cstr_i(VALUE etype, VALUE mesg));
|
182
|
+
NORETURN(static inline void rb_name_err_raise_str(VALUE mesg, VALUE recv, VALUE name));
|
183
|
+
NORETURN(static inline void rb_name_err_raise(const char *mesg, VALUE recv, VALUE name));
|
184
|
+
NORETURN(static inline void rb_key_err_raise(VALUE mesg, VALUE recv, VALUE name));
|
185
|
+
static inline void Check_Type(VALUE v, enum ruby_value_type t);
|
186
|
+
static inline bool rb_typeddata_is_instance_of_inline(VALUE obj, const rb_data_type_t *data_type);
|
187
|
+
#define rb_typeddata_is_instance_of rb_typeddata_is_instance_of_inline
|
188
|
+
void rb_bug_without_die(const char *fmt, ...);
|
189
|
+
|
190
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
191
|
+
/* error.c (export) */
|
192
|
+
int rb_bug_reporter_add(void (*func)(FILE *, void *), void *data);
|
193
|
+
#ifdef RUBY_FUNCTION_NAME_STRING
|
194
|
+
NORETURN(void rb_sys_fail_path_in(const char *func_name, VALUE path));
|
195
|
+
NORETURN(void rb_syserr_fail_path_in(const char *func_name, int err, VALUE path));
|
196
|
+
VALUE rb_syserr_new_path_in(const char *func_name, int n, VALUE path);
|
197
|
+
#endif
|
198
|
+
RUBY_SYMBOL_EXPORT_END
|
199
|
+
|
200
|
+
/* vm.c */
|
201
|
+
void rb_free_warning(void);
|
202
|
+
|
203
|
+
static inline void
|
204
|
+
rb_raise_cstr_i(VALUE etype, VALUE mesg)
|
205
|
+
{
|
206
|
+
VALUE exc = rb_exc_new_str(etype, mesg);
|
207
|
+
rb_exc_raise(exc);
|
208
|
+
}
|
209
|
+
|
210
|
+
static inline void
|
211
|
+
rb_raise_cstr(VALUE etype, const char *mesg)
|
212
|
+
{
|
213
|
+
VALUE str = rb_str_new_cstr(mesg);
|
214
|
+
rb_raise_cstr_i(etype, str);
|
215
|
+
}
|
216
|
+
|
217
|
+
static inline void
|
218
|
+
rb_name_err_raise_str(VALUE mesg, VALUE recv, VALUE name)
|
219
|
+
{
|
220
|
+
VALUE exc = rb_name_err_new(mesg, recv, name);
|
221
|
+
rb_exc_raise(exc);
|
222
|
+
}
|
223
|
+
|
224
|
+
static inline void
|
225
|
+
rb_name_err_raise(const char *mesg, VALUE recv, VALUE name)
|
226
|
+
{
|
227
|
+
VALUE str = rb_fstring_cstr(mesg);
|
228
|
+
rb_name_err_raise_str(str, recv, name);
|
229
|
+
}
|
230
|
+
|
231
|
+
static inline void
|
232
|
+
rb_key_err_raise(VALUE mesg, VALUE recv, VALUE name)
|
233
|
+
{
|
234
|
+
VALUE exc = rb_key_err_new(mesg, recv, name);
|
235
|
+
rb_exc_raise(exc);
|
236
|
+
}
|
237
|
+
|
238
|
+
static inline bool
|
239
|
+
rb_typeddata_is_instance_of_inline(VALUE obj, const rb_data_type_t *data_type)
|
240
|
+
{
|
241
|
+
return RB_TYPE_P(obj, T_DATA) && RTYPEDDATA_P(obj) && (RTYPEDDATA_TYPE(obj) == data_type);
|
242
|
+
}
|
243
|
+
|
244
|
+
#endif /* INTERNAL_ERROR_H */
|
@@ -0,0 +1,33 @@
|
|
1
|
+
#ifndef INTERNAL_EVAL_H /*-*-C-*-vi:se ft=c:*/
|
2
|
+
#define INTERNAL_EVAL_H
|
3
|
+
/**
|
4
|
+
* @author Ruby developers <ruby-core@ruby-lang.org>
|
5
|
+
* @copyright This file is a part of the programming language Ruby.
|
6
|
+
* Permission is hereby granted, to either redistribute and/or
|
7
|
+
* modify this file, provided that the conditions mentioned in the
|
8
|
+
* file COPYING are met. Consult the file for details.
|
9
|
+
* @brief Internal header for the evaluator.
|
10
|
+
* @note There also is eval_intern.h, which is evaluator's internal
|
11
|
+
* header (related to this file, but not the same role).
|
12
|
+
*/
|
13
|
+
#include "ruby/ruby.h" /* for ID */
|
14
|
+
|
15
|
+
#define id_signo ruby_static_id_signo
|
16
|
+
#define id_status ruby_static_id_status
|
17
|
+
|
18
|
+
/* eval.c */
|
19
|
+
extern ID ruby_static_id_signo;
|
20
|
+
extern ID ruby_static_id_status;
|
21
|
+
VALUE rb_refinement_module_get_refined_class(VALUE module);
|
22
|
+
void rb_class_modify_check(VALUE);
|
23
|
+
NORETURN(VALUE rb_f_raise(int argc, VALUE *argv));
|
24
|
+
VALUE rb_top_main_class(const char *method);
|
25
|
+
|
26
|
+
/* eval_error.c */
|
27
|
+
VALUE rb_get_backtrace(VALUE info);
|
28
|
+
|
29
|
+
/* eval_jump.c */
|
30
|
+
void rb_call_end_proc(VALUE data);
|
31
|
+
void rb_mark_end_proc(void);
|
32
|
+
|
33
|
+
#endif /* INTERNAL_EVAL_H */
|
@@ -0,0 +1,38 @@
|
|
1
|
+
#ifndef INTERNAL_FILE_H /*-*-C-*-vi:se ft=c:*/
|
2
|
+
#define INTERNAL_FILE_H
|
3
|
+
/**
|
4
|
+
* @author Ruby developers <ruby-core@ruby-lang.org>
|
5
|
+
* @copyright This file is a part of the programming language Ruby.
|
6
|
+
* Permission is hereby granted, to either redistribute and/or
|
7
|
+
* modify this file, provided that the conditions mentioned in the
|
8
|
+
* file COPYING are met. Consult the file for details.
|
9
|
+
* @brief Internal header for File.
|
10
|
+
*/
|
11
|
+
#include "ruby/ruby.h" /* for VALUE */
|
12
|
+
#include "ruby/encoding.h" /* for rb_encodinng */
|
13
|
+
|
14
|
+
/* file.c */
|
15
|
+
extern const char ruby_null_device[];
|
16
|
+
VALUE rb_home_dir_of(VALUE user, VALUE result);
|
17
|
+
VALUE rb_default_home_dir(VALUE result);
|
18
|
+
VALUE rb_realpath_internal(VALUE basedir, VALUE path, int strict);
|
19
|
+
VALUE rb_check_realpath(VALUE basedir, VALUE path, rb_encoding *origenc);
|
20
|
+
void rb_file_const(const char*, VALUE);
|
21
|
+
int rb_file_load_ok(const char *);
|
22
|
+
VALUE rb_file_expand_path_fast(VALUE, VALUE);
|
23
|
+
VALUE rb_file_expand_path_internal(VALUE, VALUE, int, int, VALUE);
|
24
|
+
VALUE rb_get_path_check_to_string(VALUE);
|
25
|
+
VALUE rb_get_path_check_convert(VALUE);
|
26
|
+
int ruby_is_fd_loadable(int fd);
|
27
|
+
|
28
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
29
|
+
/* file.c (export) */
|
30
|
+
#ifdef HAVE_READLINK
|
31
|
+
VALUE rb_readlink(VALUE path, rb_encoding *enc);
|
32
|
+
#endif
|
33
|
+
#ifdef __APPLE__
|
34
|
+
VALUE rb_str_normalize_ospath(const char *ptr, long len);
|
35
|
+
#endif
|
36
|
+
RUBY_SYMBOL_EXPORT_END
|
37
|
+
|
38
|
+
#endif /* INTERNAL_FILE_H */
|
@@ -0,0 +1,185 @@
|
|
1
|
+
#ifndef INTERNAL_FIXNUM_H /*-*-C-*-vi:se ft=c:*/
|
2
|
+
#define INTERNAL_FIXNUM_H
|
3
|
+
/**
|
4
|
+
* @author Ruby developers <ruby-core@ruby-lang.org>
|
5
|
+
* @copyright This file is a part of the programming language Ruby.
|
6
|
+
* Permission is hereby granted, to either redistribute and/or
|
7
|
+
* modify this file, provided that the conditions mentioned in the
|
8
|
+
* file COPYING are met. Consult the file for details.
|
9
|
+
* @brief Internal header for Fixnums.
|
10
|
+
*/
|
11
|
+
#include "ruby/internal/config.h" /* for HAVE_LONG_LONG */
|
12
|
+
#include <limits.h> /* for CHAR_BIT */
|
13
|
+
#include "internal/bits.h" /* for MUL_OVERFLOW_FIXNUM_P */
|
14
|
+
#include "internal/compilers.h" /* for __has_builtin */
|
15
|
+
#include "ruby/internal/stdbool.h" /* for bool */
|
16
|
+
#include "ruby/intern.h" /* for rb_big_mul */
|
17
|
+
#include "ruby/ruby.h" /* for RB_FIXABLE */
|
18
|
+
|
19
|
+
#if HAVE_LONG_LONG && SIZEOF_LONG * 2 <= SIZEOF_LONG_LONG
|
20
|
+
# define DLONG LONG_LONG
|
21
|
+
# define DL2NUM(x) LL2NUM(x)
|
22
|
+
#elif defined(HAVE_INT128_T) && !(defined(__OpenBSD__) && defined(__mips64__))
|
23
|
+
# define DLONG int128_t
|
24
|
+
# define DL2NUM(x) (RB_FIXABLE(x) ? LONG2FIX(x) : rb_int128t2big(x))
|
25
|
+
VALUE rb_int128t2big(int128_t n); /* in bignum.c */
|
26
|
+
#endif
|
27
|
+
|
28
|
+
static inline long rb_overflowed_fix_to_int(long x);
|
29
|
+
static inline VALUE rb_fix_plus_fix(VALUE x, VALUE y);
|
30
|
+
static inline VALUE rb_fix_minus_fix(VALUE x, VALUE y);
|
31
|
+
static inline VALUE rb_fix_mul_fix(VALUE x, VALUE y);
|
32
|
+
static inline void rb_fix_divmod_fix(VALUE x, VALUE y, VALUE *divp, VALUE *modp);
|
33
|
+
static inline VALUE rb_fix_div_fix(VALUE x, VALUE y);
|
34
|
+
static inline VALUE rb_fix_mod_fix(VALUE x, VALUE y);
|
35
|
+
static inline bool FIXNUM_POSITIVE_P(VALUE num);
|
36
|
+
static inline bool FIXNUM_NEGATIVE_P(VALUE num);
|
37
|
+
static inline bool FIXNUM_ZERO_P(VALUE num);
|
38
|
+
|
39
|
+
static inline long
|
40
|
+
rb_overflowed_fix_to_int(long x)
|
41
|
+
{
|
42
|
+
return (long)((unsigned long)(x >> 1) ^ (1LU << (SIZEOF_LONG * CHAR_BIT - 1)));
|
43
|
+
}
|
44
|
+
|
45
|
+
static inline VALUE
|
46
|
+
rb_fix_plus_fix(VALUE x, VALUE y)
|
47
|
+
{
|
48
|
+
#if !__has_builtin(__builtin_add_overflow)
|
49
|
+
long lz = FIX2LONG(x) + FIX2LONG(y);
|
50
|
+
return LONG2NUM(lz);
|
51
|
+
#else
|
52
|
+
long lz;
|
53
|
+
/* NOTE
|
54
|
+
* (1) `LONG2FIX(FIX2LONG(x)+FIX2LONG(y))`
|
55
|
+
+ = `((lx*2+1)/2 + (ly*2+1)/2)*2+1`
|
56
|
+
+ = `lx*2 + ly*2 + 1`
|
57
|
+
+ = `(lx*2+1) + (ly*2+1) - 1`
|
58
|
+
+ = `x + y - 1`
|
59
|
+
* (2) Fixnum's LSB is always 1.
|
60
|
+
* It means you can always run `x - 1` without overflow.
|
61
|
+
* (3) Of course `z = x + (y-1)` may overflow.
|
62
|
+
* At that time true value is
|
63
|
+
* * positive: 0b0 1xxx...1, and z = 0b1xxx...1
|
64
|
+
* * negative: 0b1 0xxx...1, and z = 0b0xxx...1
|
65
|
+
* To convert this true value to long,
|
66
|
+
* (a) Use arithmetic shift
|
67
|
+
* * positive: 0b11xxx...
|
68
|
+
* * negative: 0b00xxx...
|
69
|
+
* (b) invert MSB
|
70
|
+
* * positive: 0b01xxx...
|
71
|
+
* * negative: 0b10xxx...
|
72
|
+
*/
|
73
|
+
if (__builtin_add_overflow((long)x, (long)y-1, &lz)) {
|
74
|
+
return rb_int2big(rb_overflowed_fix_to_int(lz));
|
75
|
+
}
|
76
|
+
else {
|
77
|
+
return (VALUE)lz;
|
78
|
+
}
|
79
|
+
#endif
|
80
|
+
}
|
81
|
+
|
82
|
+
static inline VALUE
|
83
|
+
rb_fix_minus_fix(VALUE x, VALUE y)
|
84
|
+
{
|
85
|
+
#if !__has_builtin(__builtin_sub_overflow)
|
86
|
+
long lz = FIX2LONG(x) - FIX2LONG(y);
|
87
|
+
return LONG2NUM(lz);
|
88
|
+
#else
|
89
|
+
long lz;
|
90
|
+
if (__builtin_sub_overflow((long)x, (long)y-1, &lz)) {
|
91
|
+
return rb_int2big(rb_overflowed_fix_to_int(lz));
|
92
|
+
}
|
93
|
+
else {
|
94
|
+
return (VALUE)lz;
|
95
|
+
}
|
96
|
+
#endif
|
97
|
+
}
|
98
|
+
|
99
|
+
/* arguments must be Fixnum */
|
100
|
+
static inline VALUE
|
101
|
+
rb_fix_mul_fix(VALUE x, VALUE y)
|
102
|
+
{
|
103
|
+
long lx = FIX2LONG(x);
|
104
|
+
long ly = FIX2LONG(y);
|
105
|
+
#ifdef DLONG
|
106
|
+
return DL2NUM((DLONG)lx * (DLONG)ly);
|
107
|
+
#else
|
108
|
+
if (MUL_OVERFLOW_FIXNUM_P(lx, ly)) {
|
109
|
+
return rb_big_mul(rb_int2big(lx), rb_int2big(ly));
|
110
|
+
}
|
111
|
+
else {
|
112
|
+
return LONG2FIX(lx * ly);
|
113
|
+
}
|
114
|
+
#endif
|
115
|
+
}
|
116
|
+
|
117
|
+
/*
|
118
|
+
* This behaves different from C99 for negative arguments.
|
119
|
+
* Note that div may overflow fixnum.
|
120
|
+
*/
|
121
|
+
static inline void
|
122
|
+
rb_fix_divmod_fix(VALUE a, VALUE b, VALUE *divp, VALUE *modp)
|
123
|
+
{
|
124
|
+
/* assume / and % comply C99.
|
125
|
+
* ldiv(3) won't be inlined by GCC and clang.
|
126
|
+
* I expect / and % are compiled as single idiv.
|
127
|
+
*/
|
128
|
+
long x = FIX2LONG(a);
|
129
|
+
long y = FIX2LONG(b);
|
130
|
+
long div, mod;
|
131
|
+
if (x == FIXNUM_MIN && y == -1) {
|
132
|
+
if (divp) *divp = LONG2NUM(-FIXNUM_MIN);
|
133
|
+
if (modp) *modp = LONG2FIX(0);
|
134
|
+
return;
|
135
|
+
}
|
136
|
+
div = x / y;
|
137
|
+
mod = x % y;
|
138
|
+
if (y > 0 ? mod < 0 : mod > 0) {
|
139
|
+
mod += y;
|
140
|
+
div -= 1;
|
141
|
+
}
|
142
|
+
if (divp) *divp = LONG2FIX(div);
|
143
|
+
if (modp) *modp = LONG2FIX(mod);
|
144
|
+
}
|
145
|
+
|
146
|
+
/* div() for Ruby
|
147
|
+
* This behaves different from C99 for negative arguments.
|
148
|
+
*/
|
149
|
+
static inline VALUE
|
150
|
+
rb_fix_div_fix(VALUE x, VALUE y)
|
151
|
+
{
|
152
|
+
VALUE div;
|
153
|
+
rb_fix_divmod_fix(x, y, &div, NULL);
|
154
|
+
return div;
|
155
|
+
}
|
156
|
+
|
157
|
+
/* mod() for Ruby
|
158
|
+
* This behaves different from C99 for negative arguments.
|
159
|
+
*/
|
160
|
+
static inline VALUE
|
161
|
+
rb_fix_mod_fix(VALUE x, VALUE y)
|
162
|
+
{
|
163
|
+
VALUE mod;
|
164
|
+
rb_fix_divmod_fix(x, y, NULL, &mod);
|
165
|
+
return mod;
|
166
|
+
}
|
167
|
+
|
168
|
+
static inline bool
|
169
|
+
FIXNUM_POSITIVE_P(VALUE num)
|
170
|
+
{
|
171
|
+
return (SIGNED_VALUE)num > (SIGNED_VALUE)INT2FIX(0);
|
172
|
+
}
|
173
|
+
|
174
|
+
static inline bool
|
175
|
+
FIXNUM_NEGATIVE_P(VALUE num)
|
176
|
+
{
|
177
|
+
return (SIGNED_VALUE)num < 0;
|
178
|
+
}
|
179
|
+
|
180
|
+
static inline bool
|
181
|
+
FIXNUM_ZERO_P(VALUE num)
|
182
|
+
{
|
183
|
+
return num == INT2FIX(0);
|
184
|
+
}
|
185
|
+
#endif /* INTERNAL_FIXNUM_H */
|