debase-ruby_core_source 3.2.0 → 3.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/CHANGELOG.md +10 -0
  4. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/addr2line.h +20 -0
  5. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/builtin.h +117 -0
  6. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/build_assert/build_assert.h +40 -0
  7. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/check_type/check_type.h +63 -0
  8. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/container_of/container_of.h +142 -0
  9. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/list/list.h +789 -0
  10. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/str/str.h +17 -0
  11. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/constant.h +53 -0
  12. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/darray.h +246 -0
  13. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/debug_counter.h +423 -0
  14. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/dln.h +31 -0
  15. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/encindex.h +70 -0
  16. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/eval_intern.h +341 -0
  17. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/hrtime.h +227 -0
  18. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/id.h +343 -0
  19. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/id_table.h +39 -0
  20. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/insns.inc +249 -0
  21. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/insns_info.inc +9133 -0
  22. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/array.h +144 -0
  23. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/basic_operators.h +63 -0
  24. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/bignum.h +244 -0
  25. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/bits.h +568 -0
  26. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/class.h +226 -0
  27. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/cmdlineopt.h +63 -0
  28. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/compar.h +29 -0
  29. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/compile.h +34 -0
  30. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/compilers.h +107 -0
  31. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/complex.h +29 -0
  32. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/cont.h +32 -0
  33. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/dir.h +16 -0
  34. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/enc.h +19 -0
  35. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/encoding.h +32 -0
  36. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/enum.h +18 -0
  37. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/enumerator.h +21 -0
  38. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/error.h +213 -0
  39. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/eval.h +32 -0
  40. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/file.h +38 -0
  41. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/fixnum.h +184 -0
  42. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/gc.h +361 -0
  43. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/hash.h +190 -0
  44. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/imemo.h +241 -0
  45. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/inits.h +50 -0
  46. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/io.h +137 -0
  47. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/load.h +18 -0
  48. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/loadpath.h +16 -0
  49. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/math.h +23 -0
  50. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/missing.h +18 -0
  51. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/numeric.h +273 -0
  52. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/object.h +59 -0
  53. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/parse.h +133 -0
  54. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/proc.h +30 -0
  55. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/process.h +124 -0
  56. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/ractor.h +6 -0
  57. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/random.h +16 -0
  58. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/range.h +40 -0
  59. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/rational.h +71 -0
  60. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/re.h +28 -0
  61. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/ruby_parser.h +69 -0
  62. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/sanitizers.h +186 -0
  63. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/serial.h +23 -0
  64. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/signal.h +25 -0
  65. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/static_assert.h +16 -0
  66. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/string.h +160 -0
  67. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/struct.h +127 -0
  68. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/symbol.h +42 -0
  69. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/thread.h +74 -0
  70. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/time.h +34 -0
  71. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/transcode.h +20 -0
  72. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/util.h +27 -0
  73. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/variable.h +71 -0
  74. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/vm.h +129 -0
  75. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/warnings.h +16 -0
  76. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal.h +112 -0
  77. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/iseq.h +334 -0
  78. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/known_errors.inc +791 -0
  79. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/method.h +254 -0
  80. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/node.h +125 -0
  81. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/node_name.inc +210 -0
  82. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/optinsn.inc +128 -0
  83. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/optunifs.inc +43 -0
  84. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parse.h +232 -0
  85. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parser_bits.h +564 -0
  86. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parser_node.h +133 -0
  87. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parser_st.h +162 -0
  88. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parser_value.h +106 -0
  89. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/probes_helper.h +42 -0
  90. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ractor_core.h +387 -0
  91. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/regenc.h +254 -0
  92. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/regint.h +996 -0
  93. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/regparse.h +370 -0
  94. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/revision.h +5 -0
  95. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/rjit.h +103 -0
  96. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/rjit_c.h +165 -0
  97. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ruby_assert.h +14 -0
  98. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ruby_atomic.h +23 -0
  99. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/rubyparser.h +628 -0
  100. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/shape.h +232 -0
  101. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/siphash.h +48 -0
  102. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/symbol.h +119 -0
  103. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/thread_none.h +20 -0
  104. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/thread_pthread.h +126 -0
  105. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/thread_win32.h +58 -0
  106. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/timev.h +58 -0
  107. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/transcode_data.h +138 -0
  108. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/variable.h +30 -0
  109. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/version.h +65 -0
  110. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm.inc +5396 -0
  111. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_call_iseq_optimized.inc +244 -0
  112. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_callinfo.h +608 -0
  113. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_core.h +2089 -0
  114. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_debug.h +122 -0
  115. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_exec.h +199 -0
  116. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_insnhelper.h +271 -0
  117. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_opts.h +67 -0
  118. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_sync.h +137 -0
  119. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vmtc.inc +243 -0
  120. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/yjit.h +70 -0
  121. data/lib/debase/ruby_core_source/version.rb +1 -1
  122. metadata +120 -3
@@ -0,0 +1,71 @@
1
+ #ifndef INTERNAL_RATIONAL_H /*-*-C-*-vi:se ft=c:*/
2
+ #define INTERNAL_RATIONAL_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 Rational.
10
+ */
11
+ #include "ruby/internal/config.h" /* for HAVE_LIBGMP */
12
+ #include "ruby/ruby.h" /* for struct RBasic */
13
+ #include "internal/numeric.h" /* for INT_POSITIVE_P */
14
+ #include "ruby_assert.h" /* for assert */
15
+
16
+ struct RRational {
17
+ struct RBasic basic;
18
+ VALUE num;
19
+ VALUE den;
20
+ };
21
+
22
+ #define RRATIONAL(obj) ((struct RRational *)(obj))
23
+
24
+ /* rational.c */
25
+ VALUE rb_rational_canonicalize(VALUE x);
26
+ VALUE rb_rational_uminus(VALUE self);
27
+ VALUE rb_rational_plus(VALUE self, VALUE other);
28
+ VALUE rb_rational_minus(VALUE self, VALUE other);
29
+ VALUE rb_rational_mul(VALUE self, VALUE other);
30
+ VALUE rb_rational_div(VALUE self, VALUE other);
31
+ VALUE rb_lcm(VALUE x, VALUE y);
32
+ VALUE rb_rational_reciprocal(VALUE x);
33
+ VALUE rb_cstr_to_rat(const char *, int);
34
+ VALUE rb_rational_hash(VALUE self);
35
+ VALUE rb_rational_abs(VALUE self);
36
+ VALUE rb_rational_cmp(VALUE self, VALUE other);
37
+ VALUE rb_rational_pow(VALUE self, VALUE other);
38
+ VALUE rb_rational_floor(VALUE self, int ndigits);
39
+ VALUE rb_numeric_quo(VALUE x, VALUE y);
40
+ VALUE rb_flo_round_by_rational(int argc, VALUE *argv, VALUE num);
41
+ VALUE rb_float_numerator(VALUE x);
42
+ VALUE rb_float_denominator(VALUE x);
43
+
44
+ static inline void RATIONAL_SET_NUM(VALUE r, VALUE n);
45
+ static inline void RATIONAL_SET_DEN(VALUE r, VALUE d);
46
+
47
+ RUBY_SYMBOL_EXPORT_BEGIN
48
+ /* rational.c (export) */
49
+ VALUE rb_gcd(VALUE x, VALUE y);
50
+ VALUE rb_gcd_normal(VALUE self, VALUE other);
51
+ #if defined(HAVE_LIBGMP) && defined(HAVE_GMP_H)
52
+ VALUE rb_gcd_gmp(VALUE x, VALUE y);
53
+ #endif
54
+ RUBY_SYMBOL_EXPORT_END
55
+
56
+ static inline void
57
+ RATIONAL_SET_NUM(VALUE r, VALUE n)
58
+ {
59
+ assert(RB_INTEGER_TYPE_P(n));
60
+ RB_OBJ_WRITE(r, &RRATIONAL(r)->num, n);
61
+ }
62
+
63
+ static inline void
64
+ RATIONAL_SET_DEN(VALUE r, VALUE d)
65
+ {
66
+ assert(RB_INTEGER_TYPE_P(d));
67
+ assert(INT_POSITIVE_P(d));
68
+ RB_OBJ_WRITE(r, &RRATIONAL(r)->den, d);
69
+ }
70
+
71
+ #endif /* INTERNAL_RATIONAL_H */
@@ -0,0 +1,28 @@
1
+ #ifndef INTERNAL_RE_H /*-*-C-*-vi:se ft=c:*/
2
+ #define INTERNAL_RE_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 Regexp.
10
+ */
11
+ #include "ruby/internal/stdbool.h" /* for bool */
12
+ #include "ruby/ruby.h" /* for VALUE */
13
+
14
+ /* re.c */
15
+ VALUE rb_reg_compile(VALUE str, int options, const char *sourcefile, int sourceline);
16
+ VALUE rb_reg_check_preprocess(VALUE);
17
+ long rb_reg_search0(VALUE, VALUE, long, int, int);
18
+ VALUE rb_reg_match_p(VALUE re, VALUE str, long pos);
19
+ bool rb_reg_start_with_p(VALUE re, VALUE str);
20
+ VALUE rb_reg_hash(VALUE re);
21
+ VALUE rb_reg_equal(VALUE re1, VALUE re2);
22
+ void rb_backref_set_string(VALUE string, long pos, long len);
23
+ void rb_match_unbusy(VALUE);
24
+ int rb_match_count(VALUE match);
25
+ VALUE rb_reg_new_ary(VALUE ary, int options);
26
+ VALUE rb_reg_last_defined(VALUE match);
27
+
28
+ #endif /* INTERNAL_RE_H */
@@ -0,0 +1,69 @@
1
+ #ifndef INTERNAL_RUBY_PARSE_H
2
+ #define INTERNAL_RUBY_PARSE_H
3
+
4
+ #include "internal.h"
5
+ #include "internal/imemo.h"
6
+ #include "rubyparser.h"
7
+ #include "vm.h"
8
+
9
+ RUBY_SYMBOL_EXPORT_BEGIN
10
+ #ifdef UNIVERSAL_PARSER
11
+ void rb_parser_config_initialize(rb_parser_config_t *config);
12
+ #endif
13
+ VALUE rb_parser_set_context(VALUE, const struct rb_iseq_struct *, int);
14
+ RUBY_SYMBOL_EXPORT_END
15
+
16
+ VALUE rb_parser_new(void);
17
+ VALUE rb_parser_end_seen_p(VALUE);
18
+ VALUE rb_parser_encoding(VALUE);
19
+ VALUE rb_parser_set_yydebug(VALUE, VALUE);
20
+ void rb_parser_set_options(VALUE, int, int, int, int);
21
+ void *rb_parser_load_file(VALUE parser, VALUE name);
22
+ void rb_parser_set_script_lines(VALUE vparser, VALUE lines_array);
23
+ void rb_parser_error_tolerant(VALUE vparser);
24
+ void rb_parser_keep_tokens(VALUE vparser);
25
+
26
+ rb_ast_t *rb_parser_compile_string(VALUE, const char*, VALUE, int);
27
+ rb_ast_t *rb_parser_compile_string_path(VALUE vparser, VALUE fname, VALUE src, int line);
28
+ rb_ast_t *rb_parser_compile_file_path(VALUE vparser, VALUE fname, VALUE input, int line);
29
+ rb_ast_t *rb_parser_compile_generic(VALUE vparser, VALUE (*lex_gets)(VALUE, int), VALUE fname, VALUE input, int line);
30
+
31
+ enum lex_state_bits {
32
+ EXPR_BEG_bit, /* ignore newline, +/- is a sign. */
33
+ EXPR_END_bit, /* newline significant, +/- is an operator. */
34
+ EXPR_ENDARG_bit, /* ditto, and unbound braces. */
35
+ EXPR_ENDFN_bit, /* ditto, and unbound braces. */
36
+ EXPR_ARG_bit, /* newline significant, +/- is an operator. */
37
+ EXPR_CMDARG_bit, /* newline significant, +/- is an operator. */
38
+ EXPR_MID_bit, /* newline significant, +/- is an operator. */
39
+ EXPR_FNAME_bit, /* ignore newline, no reserved words. */
40
+ EXPR_DOT_bit, /* right after `.', `&.' or `::', no reserved words. */
41
+ EXPR_CLASS_bit, /* immediate after `class', no here document. */
42
+ EXPR_LABEL_bit, /* flag bit, label is allowed. */
43
+ EXPR_LABELED_bit, /* flag bit, just after a label. */
44
+ EXPR_FITEM_bit, /* symbol literal as FNAME. */
45
+ EXPR_MAX_STATE
46
+ };
47
+ /* examine combinations */
48
+ enum lex_state_e {
49
+ #define DEF_EXPR(n) EXPR_##n = (1 << EXPR_##n##_bit)
50
+ DEF_EXPR(BEG),
51
+ DEF_EXPR(END),
52
+ DEF_EXPR(ENDARG),
53
+ DEF_EXPR(ENDFN),
54
+ DEF_EXPR(ARG),
55
+ DEF_EXPR(CMDARG),
56
+ DEF_EXPR(MID),
57
+ DEF_EXPR(FNAME),
58
+ DEF_EXPR(DOT),
59
+ DEF_EXPR(CLASS),
60
+ DEF_EXPR(LABEL),
61
+ DEF_EXPR(LABELED),
62
+ DEF_EXPR(FITEM),
63
+ EXPR_VALUE = EXPR_BEG,
64
+ EXPR_BEG_ANY = (EXPR_BEG | EXPR_MID | EXPR_CLASS),
65
+ EXPR_ARG_ANY = (EXPR_ARG | EXPR_CMDARG),
66
+ EXPR_END_ANY = (EXPR_END | EXPR_ENDARG | EXPR_ENDFN),
67
+ EXPR_NONE = 0
68
+ };
69
+ #endif /* INTERNAL_RUBY_PARSE_H */
@@ -0,0 +1,186 @@
1
+ #ifndef INTERNAL_SANITIZERS_H /*-*-C-*-vi:se ft=c:*/
2
+ #define INTERNAL_SANITIZERS_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 ASAN / MSAN / etc.
10
+ */
11
+ #include "ruby/internal/config.h"
12
+ #include "internal/compilers.h" /* for __has_feature */
13
+
14
+ #ifdef HAVE_VALGRIND_MEMCHECK_H
15
+ # include <valgrind/memcheck.h>
16
+ #endif
17
+
18
+ #ifdef HAVE_SANITIZER_ASAN_INTERFACE_H
19
+ # include <sanitizer/asan_interface.h>
20
+ #endif
21
+
22
+ #ifdef HAVE_SANITIZER_MSAN_INTERFACE_H
23
+ # if __has_feature(memory_sanitizer)
24
+ # include <sanitizer/msan_interface.h>
25
+ # endif
26
+ #endif
27
+
28
+ #include "ruby/internal/stdbool.h" /* for bool */
29
+ #include "ruby/ruby.h" /* for VALUE */
30
+
31
+ #if 0
32
+ #elif __has_feature(memory_sanitizer) && __has_feature(address_sanitizer)
33
+ # define ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS(x) \
34
+ __attribute__((__no_sanitize__("memory, address"), __noinline__)) x
35
+ #elif __has_feature(address_sanitizer)
36
+ # define ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS(x) \
37
+ __attribute__((__no_sanitize__("address"), __noinline__)) x
38
+ #elif defined(NO_SANITIZE_ADDRESS)
39
+ # define ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS(x) \
40
+ NO_SANITIZE_ADDRESS(NOINLINE(x))
41
+ #elif defined(NO_ADDRESS_SAFETY_ANALYSIS)
42
+ # define ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS(x) \
43
+ NO_ADDRESS_SAFETY_ANALYSIS(NOINLINE(x))
44
+ #else
45
+ # define ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS(x) x
46
+ #endif
47
+
48
+ #if defined(NO_SANITIZE) && RBIMPL_COMPILER_IS(GCC)
49
+ /* GCC warns about unknown sanitizer, which is annoying. */
50
+ # include "internal/warnings.h"
51
+ # undef NO_SANITIZE
52
+ # define NO_SANITIZE(x, y) \
53
+ COMPILER_WARNING_PUSH; \
54
+ COMPILER_WARNING_IGNORED(-Wattributes); \
55
+ __attribute__((__no_sanitize__(x))) y; \
56
+ COMPILER_WARNING_POP
57
+ #endif
58
+
59
+ #ifndef NO_SANITIZE
60
+ # define NO_SANITIZE(x, y) y
61
+ #endif
62
+
63
+ #if !__has_feature(address_sanitizer)
64
+ # define __asan_poison_memory_region(x, y)
65
+ # define __asan_unpoison_memory_region(x, y)
66
+ # define __asan_region_is_poisoned(x, y) 0
67
+ #endif
68
+
69
+ #if !__has_feature(memory_sanitizer)
70
+ # define __msan_allocated_memory(x, y) ((void)(x), (void)(y))
71
+ # define __msan_poison(x, y) ((void)(x), (void)(y))
72
+ # define __msan_unpoison(x, y) ((void)(x), (void)(y))
73
+ # define __msan_unpoison_string(x) ((void)(x))
74
+ #endif
75
+
76
+ #ifdef VALGRIND_MAKE_READABLE
77
+ # define VALGRIND_MAKE_MEM_DEFINED(p, n) VALGRIND_MAKE_READABLE((p), (n))
78
+ #endif
79
+
80
+ #ifdef VALGRIND_MAKE_WRITABLE
81
+ # define VALGRIND_MAKE_MEM_UNDEFINED(p, n) VALGRIND_MAKE_WRITABLE((p), (n))
82
+ #endif
83
+
84
+ #ifndef VALGRIND_MAKE_MEM_DEFINED
85
+ # define VALGRIND_MAKE_MEM_DEFINED(p, n) 0
86
+ #endif
87
+
88
+ #ifndef VALGRIND_MAKE_MEM_UNDEFINED
89
+ # define VALGRIND_MAKE_MEM_UNDEFINED(p, n) 0
90
+ #endif
91
+
92
+ /*!
93
+ * This function asserts that a (continuous) memory region from ptr to size
94
+ * being "poisoned". Both read / write access to such memory region are
95
+ * prohibited until properly unpoisoned. The region must be previously
96
+ * allocated (do not pass a freed pointer here), but not necessarily be an
97
+ * entire object that the malloc returns. You can punch hole a part of a
98
+ * gigantic heap arena. This is handy when you do not free an allocated memory
99
+ * region to reuse later: poison when you keep it unused, and unpoison when you
100
+ * reuse.
101
+ *
102
+ * \param[in] ptr pointer to the beginning of the memory region to poison.
103
+ * \param[in] size the length of the memory region to poison.
104
+ */
105
+ static inline void
106
+ asan_poison_memory_region(const volatile void *ptr, size_t size)
107
+ {
108
+ __msan_poison(ptr, size);
109
+ __asan_poison_memory_region(ptr, size);
110
+ }
111
+
112
+ /*!
113
+ * This is a variant of asan_poison_memory_region that takes a VALUE.
114
+ *
115
+ * \param[in] obj target object.
116
+ */
117
+ static inline void
118
+ asan_poison_object(VALUE obj)
119
+ {
120
+ MAYBE_UNUSED(struct RVALUE *) ptr = (void *)obj;
121
+ asan_poison_memory_region(ptr, SIZEOF_VALUE);
122
+ }
123
+
124
+ #if !__has_feature(address_sanitizer)
125
+ #define asan_poison_object_if(ptr, obj) ((void)(ptr), (void)(obj))
126
+ #else
127
+ #define asan_poison_object_if(ptr, obj) do { \
128
+ if (ptr) asan_poison_object(obj); \
129
+ } while (0)
130
+ #endif
131
+
132
+ /*!
133
+ * This function predicates if the given object is fully addressable or not.
134
+ *
135
+ * \param[in] obj target object.
136
+ * \retval 0 the given object is fully addressable.
137
+ * \retval otherwise pointer to first such byte who is poisoned.
138
+ */
139
+ static inline void *
140
+ asan_poisoned_object_p(VALUE obj)
141
+ {
142
+ MAYBE_UNUSED(struct RVALUE *) ptr = (void *)obj;
143
+ return __asan_region_is_poisoned(ptr, SIZEOF_VALUE);
144
+ }
145
+
146
+ /*!
147
+ * This function asserts that a (formally poisoned) memory region from ptr to
148
+ * size is now addressable. Write access to such memory region gets allowed.
149
+ * However read access might or might not be possible depending on situations,
150
+ * because the region can have contents of previous usages. That information
151
+ * should be passed by the malloc_p flag. If that is true, the contents of the
152
+ * region is _not_ fully defined (like the return value of malloc behaves).
153
+ * Reading from there is NG; write something first. If malloc_p is false on
154
+ * the other hand, that memory region is fully defined and can be read
155
+ * immediately.
156
+ *
157
+ * \param[in] ptr pointer to the beginning of the memory region to unpoison.
158
+ * \param[in] size the length of the memory region.
159
+ * \param[in] malloc_p if the memory region is like a malloc's return value or not.
160
+ */
161
+ static inline void
162
+ asan_unpoison_memory_region(const volatile void *ptr, size_t size, bool malloc_p)
163
+ {
164
+ __asan_unpoison_memory_region(ptr, size);
165
+ if (malloc_p) {
166
+ __msan_allocated_memory(ptr, size);
167
+ }
168
+ else {
169
+ __msan_unpoison(ptr, size);
170
+ }
171
+ }
172
+
173
+ /*!
174
+ * This is a variant of asan_unpoison_memory_region that takes a VALUE.
175
+ *
176
+ * \param[in] obj target object.
177
+ * \param[in] malloc_p if the memory region is like a malloc's return value or not.
178
+ */
179
+ static inline void
180
+ asan_unpoison_object(VALUE obj, bool newobj_p)
181
+ {
182
+ MAYBE_UNUSED(struct RVALUE *) ptr = (void *)obj;
183
+ asan_unpoison_memory_region(ptr, SIZEOF_VALUE, newobj_p);
184
+ }
185
+
186
+ #endif /* INTERNAL_SANITIZERS_H */
@@ -0,0 +1,23 @@
1
+ #ifndef INTERNAL_SERIAL_H /*-*-C-*-vi:se ft=c:*/
2
+ #define INTERNAL_SERIAL_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 rb_serial_t.
10
+ */
11
+ #include "ruby/internal/config.h" /* for HAVE_LONG_LONG */
12
+ #include "ruby/defines.h" /* for LONG_LONG */
13
+
14
+ #ifndef HAVE_LONG_LONG
15
+ # error need C99+
16
+ #endif
17
+
18
+ typedef unsigned LONG_LONG rb_serial_t;
19
+ #define SERIALT2NUM ULL2NUM
20
+ #define PRI_SERIALT_PREFIX PRI_LL_PREFIX
21
+ #define SIZEOF_SERIAL_T SIZEOF_LONG_LONG
22
+
23
+ #endif /* INTERNAL_SERIAL_H */
@@ -0,0 +1,25 @@
1
+ #ifndef INTERNAL_SIGNAL_H /*-*-C-*-vi:se ft=c:*/
2
+ #define INTERNAL_SIGNAL_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 SignalException.
10
+ */
11
+
12
+ /* signal.c */
13
+ extern int ruby_enable_coredump;
14
+ int rb_get_next_signal(void);
15
+
16
+ #ifdef POSIX_SIGNAL
17
+ void (*ruby_posix_signal(int, void (*)(int)))(int);
18
+ #endif
19
+
20
+ RUBY_SYMBOL_EXPORT_BEGIN
21
+ /* signal.c (export) */
22
+ int rb_grantpt(int fd);
23
+ RUBY_SYMBOL_EXPORT_END
24
+
25
+ #endif /* INTERNAL_SIGNAL_H */
@@ -0,0 +1,16 @@
1
+ #ifndef INTERNAL_STATIC_ASSERT_H /*-*-C-*-vi:se ft=c:*/
2
+ #define INTERNAL_STATIC_ASSERT_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 C11 shim for _Static_assert.
10
+ */
11
+ #include "ruby/internal/static_assert.h"
12
+ #ifndef STATIC_ASSERT
13
+ # define STATIC_ASSERT RBIMPL_STATIC_ASSERT
14
+ #endif
15
+
16
+ #endif /* INTERNAL_STATIC_ASSERT_H */
@@ -0,0 +1,160 @@
1
+ #ifndef INTERNAL_STRING_H /*-*-C-*-vi:se ft=c:*/
2
+ #define INTERNAL_STRING_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 String.
10
+ */
11
+ #include "ruby/internal/config.h"
12
+ #include <stddef.h> /* for size_t */
13
+ #include "internal/compilers.h" /* for __has_builtin */
14
+ #include "ruby/internal/stdbool.h" /* for bool */
15
+ #include "ruby/encoding.h" /* for rb_encoding */
16
+ #include "ruby/ruby.h" /* for VALUE */
17
+
18
+ #define STR_NOEMBED FL_USER1
19
+ #define STR_SHARED FL_USER2 /* = ELTS_SHARED */
20
+
21
+ #ifdef rb_fstring_cstr
22
+ # undef rb_fstring_cstr
23
+ #endif
24
+
25
+ /* string.c */
26
+ VALUE rb_fstring(VALUE);
27
+ VALUE rb_fstring_cstr(const char *str);
28
+ VALUE rb_fstring_enc_new(const char *ptr, long len, rb_encoding *enc);
29
+ int rb_str_buf_cat_escaped_char(VALUE result, unsigned int c, int unicode_p);
30
+ int rb_str_symname_p(VALUE);
31
+ VALUE rb_str_quote_unprintable(VALUE);
32
+ char *rb_str_fill_terminator(VALUE str, const int termlen);
33
+ void rb_str_change_terminator_length(VALUE str, const int oldtermlen, const int termlen);
34
+ VALUE rb_str_locktmp_ensure(VALUE str, VALUE (*func)(VALUE), VALUE arg);
35
+ VALUE rb_str_chomp_string(VALUE str, VALUE chomp);
36
+ VALUE rb_external_str_with_enc(VALUE str, rb_encoding *eenc);
37
+ VALUE rb_str_cat_conv_enc_opts(VALUE newstr, long ofs, const char *ptr, long len,
38
+ rb_encoding *from, int ecflags, VALUE ecopts);
39
+ VALUE rb_enc_str_scrub(rb_encoding *enc, VALUE str, VALUE repl);
40
+ VALUE rb_str_escape(VALUE str);
41
+ size_t rb_str_memsize(VALUE);
42
+ char *rb_str_to_cstr(VALUE str);
43
+ const char *ruby_escaped_char(int c);
44
+ void rb_str_make_independent(VALUE str);
45
+ int rb_enc_str_coderange_scan(VALUE str, rb_encoding *enc);
46
+ int rb_ascii8bit_appendable_encoding_index(rb_encoding *enc, unsigned int code);
47
+ VALUE rb_str_include(VALUE str, VALUE arg);
48
+
49
+ static inline bool STR_EMBED_P(VALUE str);
50
+ static inline bool STR_SHARED_P(VALUE str);
51
+ static inline VALUE QUOTE(VALUE v);
52
+ static inline VALUE QUOTE_ID(ID v);
53
+ static inline bool is_ascii_string(VALUE str);
54
+ static inline bool is_broken_string(VALUE str);
55
+ static inline VALUE rb_str_eql_internal(const VALUE str1, const VALUE str2);
56
+
57
+ RUBY_SYMBOL_EXPORT_BEGIN
58
+ /* string.c (export) */
59
+ VALUE rb_str_tmp_frozen_acquire(VALUE str);
60
+ void rb_str_tmp_frozen_release(VALUE str, VALUE tmp);
61
+ VALUE rb_setup_fake_str(struct RString *fake_str, const char *name, long len, rb_encoding *enc);
62
+ VALUE rb_str_upto_each(VALUE, VALUE, int, int (*each)(VALUE, VALUE), VALUE);
63
+ VALUE rb_str_upto_endless_each(VALUE, int (*each)(VALUE, VALUE), VALUE);
64
+ void rb_str_make_embedded(VALUE);
65
+ size_t rb_str_size_as_embedded(VALUE);
66
+ bool rb_str_reembeddable_p(VALUE);
67
+ void rb_str_update_shared_ary(VALUE str, VALUE old_root, VALUE new_root);
68
+ RUBY_SYMBOL_EXPORT_END
69
+
70
+ VALUE rb_fstring_new(const char *ptr, long len);
71
+ VALUE rb_obj_as_string_result(VALUE str, VALUE obj);
72
+ VALUE rb_str_opt_plus(VALUE x, VALUE y);
73
+ VALUE rb_str_concat_literals(size_t num, const VALUE *strary);
74
+ VALUE rb_str_eql(VALUE str1, VALUE str2);
75
+ VALUE rb_id_quote_unprintable(ID);
76
+ VALUE rb_sym_proc_call(ID mid, int argc, const VALUE *argv, int kw_splat, VALUE passed_proc);
77
+
78
+ struct rb_execution_context_struct;
79
+ VALUE rb_ec_str_resurrect(struct rb_execution_context_struct *ec, VALUE str);
80
+
81
+ #define rb_fstring_lit(str) rb_fstring_new((str), rb_strlen_lit(str))
82
+ #define rb_fstring_literal(str) rb_fstring_lit(str)
83
+ #define rb_fstring_enc_lit(str, enc) rb_fstring_enc_new((str), rb_strlen_lit(str), (enc))
84
+ #define rb_fstring_enc_literal(str, enc) rb_fstring_enc_lit(str, enc)
85
+
86
+ static inline VALUE
87
+ QUOTE(VALUE v)
88
+ {
89
+ return rb_str_quote_unprintable(v);
90
+ }
91
+
92
+ static inline VALUE
93
+ QUOTE_ID(ID i)
94
+ {
95
+ return rb_id_quote_unprintable(i);
96
+ }
97
+
98
+ static inline bool
99
+ STR_EMBED_P(VALUE str)
100
+ {
101
+ return ! FL_TEST_RAW(str, STR_NOEMBED);
102
+ }
103
+
104
+ static inline bool
105
+ STR_SHARED_P(VALUE str)
106
+ {
107
+ return FL_ALL_RAW(str, STR_NOEMBED | STR_SHARED);
108
+ }
109
+
110
+ static inline bool
111
+ is_ascii_string(VALUE str)
112
+ {
113
+ return rb_enc_str_coderange(str) == ENC_CODERANGE_7BIT;
114
+ }
115
+
116
+ static inline bool
117
+ is_broken_string(VALUE str)
118
+ {
119
+ return rb_enc_str_coderange(str) == ENC_CODERANGE_BROKEN;
120
+ }
121
+
122
+ static inline bool
123
+ at_char_boundary(const char *s, const char *p, const char *e, rb_encoding *enc)
124
+ {
125
+ return rb_enc_left_char_head(s, p, e, enc) == p;
126
+ }
127
+
128
+ static inline bool
129
+ at_char_right_boundary(const char *s, const char *p, const char *e, rb_encoding *enc)
130
+ {
131
+ RUBY_ASSERT(s <= p);
132
+ RUBY_ASSERT(p <= e);
133
+
134
+ return rb_enc_right_char_head(s, p, e, enc) == p;
135
+ }
136
+
137
+ /* expect tail call optimization */
138
+ // YJIT needs this function to never allocate and never raise
139
+ static inline VALUE
140
+ rb_str_eql_internal(const VALUE str1, const VALUE str2)
141
+ {
142
+ const long len = RSTRING_LEN(str1);
143
+ const char *ptr1, *ptr2;
144
+
145
+ if (len != RSTRING_LEN(str2)) return Qfalse;
146
+ if (!rb_str_comparable(str1, str2)) return Qfalse;
147
+ if ((ptr1 = RSTRING_PTR(str1)) == (ptr2 = RSTRING_PTR(str2)))
148
+ return Qtrue;
149
+ if (memcmp(ptr1, ptr2, len) == 0)
150
+ return Qtrue;
151
+ return Qfalse;
152
+ }
153
+
154
+ #if __has_builtin(__builtin_constant_p)
155
+ # define rb_fstring_cstr(str) \
156
+ (__builtin_constant_p(str) ? \
157
+ rb_fstring_new((str), (long)strlen(str)) : \
158
+ (rb_fstring_cstr)(str))
159
+ #endif
160
+ #endif /* INTERNAL_STRING_H */