kanayago 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rubocop.yml +15 -0
- data/.rubocop_todo.yml +23 -0
- data/LICENSE.txt +21 -0
- data/README.md +79 -0
- data/Rakefile +182 -0
- data/ext/kanayago/ccan/check_type/check_type.h +63 -0
- data/ext/kanayago/ccan/container_of/container_of.h +142 -0
- data/ext/kanayago/ccan/list/list.h +791 -0
- data/ext/kanayago/ccan/str/str.h +17 -0
- data/ext/kanayago/constant.h +53 -0
- data/ext/kanayago/extconf.rb +21 -0
- data/ext/kanayago/id.h +347 -0
- data/ext/kanayago/id_table.h +39 -0
- data/ext/kanayago/internal/array.h +151 -0
- data/ext/kanayago/internal/basic_operators.h +64 -0
- data/ext/kanayago/internal/bignum.h +244 -0
- data/ext/kanayago/internal/bits.h +568 -0
- data/ext/kanayago/internal/compile.h +34 -0
- data/ext/kanayago/internal/compilers.h +107 -0
- data/ext/kanayago/internal/complex.h +29 -0
- data/ext/kanayago/internal/encoding.h +36 -0
- data/ext/kanayago/internal/error.h +218 -0
- data/ext/kanayago/internal/fixnum.h +184 -0
- data/ext/kanayago/internal/gc.h +322 -0
- data/ext/kanayago/internal/hash.h +191 -0
- data/ext/kanayago/internal/imemo.h +261 -0
- data/ext/kanayago/internal/io.h +140 -0
- data/ext/kanayago/internal/numeric.h +274 -0
- data/ext/kanayago/internal/parse.h +117 -0
- data/ext/kanayago/internal/rational.h +71 -0
- data/ext/kanayago/internal/re.h +28 -0
- data/ext/kanayago/internal/ruby_parser.h +125 -0
- data/ext/kanayago/internal/sanitizers.h +297 -0
- data/ext/kanayago/internal/serial.h +23 -0
- data/ext/kanayago/internal/static_assert.h +16 -0
- data/ext/kanayago/internal/string.h +186 -0
- data/ext/kanayago/internal/symbol.h +45 -0
- data/ext/kanayago/internal/thread.h +79 -0
- data/ext/kanayago/internal/variable.h +72 -0
- data/ext/kanayago/internal/vm.h +137 -0
- data/ext/kanayago/internal/warnings.h +16 -0
- data/ext/kanayago/internal.h +108 -0
- data/ext/kanayago/kanayago.c +420 -0
- data/ext/kanayago/kanayago.h +21 -0
- data/ext/kanayago/lex.c +302 -0
- data/ext/kanayago/method.h +255 -0
- data/ext/kanayago/node.c +440 -0
- data/ext/kanayago/node.h +111 -0
- data/ext/kanayago/node_name.inc +224 -0
- data/ext/kanayago/parse.c +26931 -0
- data/ext/kanayago/parse.h +244 -0
- data/ext/kanayago/parse.tmp.y +16145 -0
- data/ext/kanayago/parser_bits.h +564 -0
- data/ext/kanayago/parser_node.h +32 -0
- data/ext/kanayago/parser_st.c +164 -0
- data/ext/kanayago/parser_st.h +162 -0
- data/ext/kanayago/parser_value.h +106 -0
- data/ext/kanayago/probes.h +4 -0
- data/ext/kanayago/ruby_assert.h +14 -0
- data/ext/kanayago/ruby_atomic.h +23 -0
- data/ext/kanayago/ruby_parser.c +1165 -0
- data/ext/kanayago/rubyparser.h +1391 -0
- data/ext/kanayago/shape.h +234 -0
- data/ext/kanayago/st.c +2339 -0
- data/ext/kanayago/symbol.h +123 -0
- data/ext/kanayago/thread_pthread.h +168 -0
- data/ext/kanayago/universal_parser.c +230 -0
- data/ext/kanayago/vm_core.h +2215 -0
- data/ext/kanayago/vm_opts.h +67 -0
- data/lib/kanayago/version.rb +5 -0
- data/lib/kanayago.rb +11 -0
- data/sig/kanayago.rbs +4 -0
- metadata +116 -0
@@ -0,0 +1,244 @@
|
|
1
|
+
#ifndef INTERNAL_BIGNUM_H /*-*-C-*-vi:se ft=c:*/
|
2
|
+
#define INTERNAL_BIGNUM_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 Bignums.
|
10
|
+
*/
|
11
|
+
#include "ruby/internal/config.h" /* for HAVE_LIBGMP */
|
12
|
+
#include <stddef.h> /* for size_t */
|
13
|
+
|
14
|
+
#ifdef HAVE_SYS_TYPES_H
|
15
|
+
# include <sys/types.h> /* for ssize_t (note: on Windows ssize_t is */
|
16
|
+
#endif /* `#define`d in ruby/config.h) */
|
17
|
+
|
18
|
+
#include "ruby/internal/stdbool.h" /* for bool */
|
19
|
+
#include "ruby/ruby.h" /* for struct RBasic */
|
20
|
+
|
21
|
+
#ifndef BDIGIT
|
22
|
+
# if SIZEOF_INT*2 <= SIZEOF_LONG_LONG
|
23
|
+
# define BDIGIT unsigned int
|
24
|
+
# define SIZEOF_BDIGIT SIZEOF_INT
|
25
|
+
# define BDIGIT_DBL unsigned LONG_LONG
|
26
|
+
# define BDIGIT_DBL_SIGNED LONG_LONG
|
27
|
+
# define PRI_BDIGIT_PREFIX ""
|
28
|
+
# define PRI_BDIGIT_DBL_PREFIX PRI_LL_PREFIX
|
29
|
+
# elif SIZEOF_INT*2 <= SIZEOF_LONG
|
30
|
+
# define BDIGIT unsigned int
|
31
|
+
# define SIZEOF_BDIGIT SIZEOF_INT
|
32
|
+
# define BDIGIT_DBL unsigned long
|
33
|
+
# define BDIGIT_DBL_SIGNED long
|
34
|
+
# define PRI_BDIGIT_PREFIX ""
|
35
|
+
# define PRI_BDIGIT_DBL_PREFIX "l"
|
36
|
+
# elif SIZEOF_SHORT*2 <= SIZEOF_LONG
|
37
|
+
# define BDIGIT unsigned short
|
38
|
+
# define SIZEOF_BDIGIT SIZEOF_SHORT
|
39
|
+
# define BDIGIT_DBL unsigned long
|
40
|
+
# define BDIGIT_DBL_SIGNED long
|
41
|
+
# define PRI_BDIGIT_PREFIX "h"
|
42
|
+
# define PRI_BDIGIT_DBL_PREFIX "l"
|
43
|
+
# else
|
44
|
+
# define BDIGIT unsigned short
|
45
|
+
# define SIZEOF_BDIGIT (SIZEOF_LONG/2)
|
46
|
+
# define SIZEOF_ACTUAL_BDIGIT SIZEOF_LONG
|
47
|
+
# define BDIGIT_DBL unsigned long
|
48
|
+
# define BDIGIT_DBL_SIGNED long
|
49
|
+
# define PRI_BDIGIT_PREFIX "h"
|
50
|
+
# define PRI_BDIGIT_DBL_PREFIX "l"
|
51
|
+
# endif
|
52
|
+
#endif
|
53
|
+
|
54
|
+
#ifndef SIZEOF_ACTUAL_BDIGIT
|
55
|
+
# define SIZEOF_ACTUAL_BDIGIT SIZEOF_BDIGIT
|
56
|
+
#endif
|
57
|
+
|
58
|
+
#ifdef PRI_BDIGIT_PREFIX
|
59
|
+
# define PRIdBDIGIT PRI_BDIGIT_PREFIX"d"
|
60
|
+
# define PRIiBDIGIT PRI_BDIGIT_PREFIX"i"
|
61
|
+
# define PRIoBDIGIT PRI_BDIGIT_PREFIX"o"
|
62
|
+
# define PRIuBDIGIT PRI_BDIGIT_PREFIX"u"
|
63
|
+
# define PRIxBDIGIT PRI_BDIGIT_PREFIX"x"
|
64
|
+
# define PRIXBDIGIT PRI_BDIGIT_PREFIX"X"
|
65
|
+
#endif
|
66
|
+
|
67
|
+
#ifdef PRI_BDIGIT_DBL_PREFIX
|
68
|
+
# define PRIdBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"d"
|
69
|
+
# define PRIiBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"i"
|
70
|
+
# define PRIoBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"o"
|
71
|
+
# define PRIuBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"u"
|
72
|
+
# define PRIxBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"x"
|
73
|
+
# define PRIXBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"X"
|
74
|
+
#endif
|
75
|
+
|
76
|
+
#define RBIGNUM(obj) ((struct RBignum *)(obj))
|
77
|
+
#define BIGNUM_SIGN_BIT FL_USER1
|
78
|
+
#define BIGNUM_EMBED_FLAG ((VALUE)FL_USER2)
|
79
|
+
#define BIGNUM_EMBED_LEN_NUMBITS 3
|
80
|
+
#define BIGNUM_EMBED_LEN_MASK \
|
81
|
+
(~(~(VALUE)0U << BIGNUM_EMBED_LEN_NUMBITS) << BIGNUM_EMBED_LEN_SHIFT)
|
82
|
+
#define BIGNUM_EMBED_LEN_SHIFT \
|
83
|
+
(FL_USHIFT+3) /* bit offset of BIGNUM_EMBED_LEN_MASK */
|
84
|
+
#ifndef BIGNUM_EMBED_LEN_MAX
|
85
|
+
# if (SIZEOF_VALUE*RBIMPL_RVALUE_EMBED_LEN_MAX/SIZEOF_ACTUAL_BDIGIT) < (1 << BIGNUM_EMBED_LEN_NUMBITS)-1
|
86
|
+
# define BIGNUM_EMBED_LEN_MAX (SIZEOF_VALUE*RBIMPL_RVALUE_EMBED_LEN_MAX/SIZEOF_ACTUAL_BDIGIT)
|
87
|
+
# else
|
88
|
+
# define BIGNUM_EMBED_LEN_MAX ((1 << BIGNUM_EMBED_LEN_NUMBITS)-1)
|
89
|
+
# endif
|
90
|
+
#endif
|
91
|
+
|
92
|
+
enum rb_int_parse_flags {
|
93
|
+
RB_INT_PARSE_SIGN = 0x01,
|
94
|
+
RB_INT_PARSE_UNDERSCORE = 0x02,
|
95
|
+
RB_INT_PARSE_PREFIX = 0x04,
|
96
|
+
RB_INT_PARSE_ALL = 0x07,
|
97
|
+
RB_INT_PARSE_DEFAULT = 0x07,
|
98
|
+
};
|
99
|
+
|
100
|
+
struct RBignum {
|
101
|
+
struct RBasic basic;
|
102
|
+
union {
|
103
|
+
struct {
|
104
|
+
size_t len;
|
105
|
+
BDIGIT *digits;
|
106
|
+
} heap;
|
107
|
+
BDIGIT ary[BIGNUM_EMBED_LEN_MAX];
|
108
|
+
} as;
|
109
|
+
};
|
110
|
+
|
111
|
+
/* bignum.c */
|
112
|
+
extern const char ruby_digitmap[];
|
113
|
+
double rb_big_fdiv_double(VALUE x, VALUE y);
|
114
|
+
VALUE rb_big_uminus(VALUE x);
|
115
|
+
VALUE rb_big_hash(VALUE);
|
116
|
+
VALUE rb_big_odd_p(VALUE);
|
117
|
+
VALUE rb_big_even_p(VALUE);
|
118
|
+
size_t rb_big_size(VALUE);
|
119
|
+
VALUE rb_integer_float_cmp(VALUE x, VALUE y);
|
120
|
+
VALUE rb_integer_float_eq(VALUE x, VALUE y);
|
121
|
+
VALUE rb_str_convert_to_inum(VALUE str, int base, int badcheck, int raise_exception);
|
122
|
+
VALUE rb_big_comp(VALUE x);
|
123
|
+
VALUE rb_big_aref(VALUE x, VALUE y);
|
124
|
+
VALUE rb_big_abs(VALUE x);
|
125
|
+
VALUE rb_big_size_m(VALUE big);
|
126
|
+
VALUE rb_big_bit_length(VALUE big);
|
127
|
+
VALUE rb_big_remainder(VALUE x, VALUE y);
|
128
|
+
VALUE rb_big_gt(VALUE x, VALUE y);
|
129
|
+
VALUE rb_big_ge(VALUE x, VALUE y);
|
130
|
+
VALUE rb_big_lt(VALUE x, VALUE y);
|
131
|
+
VALUE rb_big_le(VALUE x, VALUE y);
|
132
|
+
VALUE rb_int_powm(int const argc, VALUE * const argv, VALUE const num);
|
133
|
+
VALUE rb_big_isqrt(VALUE n);
|
134
|
+
static inline bool BIGNUM_SIGN(VALUE b);
|
135
|
+
static inline bool BIGNUM_POSITIVE_P(VALUE b);
|
136
|
+
static inline bool BIGNUM_NEGATIVE_P(VALUE b);
|
137
|
+
static inline void BIGNUM_SET_SIGN(VALUE b, bool sign);
|
138
|
+
static inline void BIGNUM_NEGATE(VALUE b);
|
139
|
+
static inline size_t BIGNUM_LEN(VALUE b);
|
140
|
+
static inline BDIGIT *BIGNUM_DIGITS(VALUE b);
|
141
|
+
static inline int BIGNUM_LENINT(VALUE b);
|
142
|
+
static inline bool BIGNUM_EMBED_P(VALUE b);
|
143
|
+
|
144
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
145
|
+
/* bignum.c (export) */
|
146
|
+
VALUE rb_big_mul_normal(VALUE x, VALUE y);
|
147
|
+
VALUE rb_big_mul_balance(VALUE x, VALUE y);
|
148
|
+
VALUE rb_big_mul_karatsuba(VALUE x, VALUE y);
|
149
|
+
VALUE rb_big_mul_toom3(VALUE x, VALUE y);
|
150
|
+
VALUE rb_big_sq_fast(VALUE x);
|
151
|
+
VALUE rb_big_divrem_normal(VALUE x, VALUE y);
|
152
|
+
VALUE rb_big2str_poweroftwo(VALUE x, int base);
|
153
|
+
VALUE rb_big2str_generic(VALUE x, int base);
|
154
|
+
VALUE rb_str2big_poweroftwo(VALUE arg, int base, int badcheck);
|
155
|
+
VALUE rb_str2big_normal(VALUE arg, int base, int badcheck);
|
156
|
+
VALUE rb_str2big_karatsuba(VALUE arg, int base, int badcheck);
|
157
|
+
#if defined(HAVE_LIBGMP) && defined(HAVE_GMP_H)
|
158
|
+
VALUE rb_big_mul_gmp(VALUE x, VALUE y);
|
159
|
+
VALUE rb_big_divrem_gmp(VALUE x, VALUE y);
|
160
|
+
VALUE rb_big2str_gmp(VALUE x, int base);
|
161
|
+
VALUE rb_str2big_gmp(VALUE arg, int base, int badcheck);
|
162
|
+
#endif
|
163
|
+
VALUE rb_int_parse_cstr(const char *str, ssize_t len, char **endp, size_t *ndigits, int base, int flags);
|
164
|
+
RUBY_SYMBOL_EXPORT_END
|
165
|
+
|
166
|
+
#if defined(HAVE_INT128_T)
|
167
|
+
VALUE rb_int128t2big(int128_t n);
|
168
|
+
#endif
|
169
|
+
|
170
|
+
/* sign: positive:1, negative:0 */
|
171
|
+
static inline bool
|
172
|
+
BIGNUM_SIGN(VALUE b)
|
173
|
+
{
|
174
|
+
return FL_TEST_RAW(b, BIGNUM_SIGN_BIT);
|
175
|
+
}
|
176
|
+
|
177
|
+
static inline bool
|
178
|
+
BIGNUM_POSITIVE_P(VALUE b)
|
179
|
+
{
|
180
|
+
return BIGNUM_SIGN(b);
|
181
|
+
}
|
182
|
+
|
183
|
+
static inline bool
|
184
|
+
BIGNUM_NEGATIVE_P(VALUE b)
|
185
|
+
{
|
186
|
+
return ! BIGNUM_POSITIVE_P(b);
|
187
|
+
}
|
188
|
+
|
189
|
+
static inline void
|
190
|
+
BIGNUM_SET_SIGN(VALUE b, bool sign)
|
191
|
+
{
|
192
|
+
if (sign) {
|
193
|
+
FL_SET_RAW(b, BIGNUM_SIGN_BIT);
|
194
|
+
}
|
195
|
+
else {
|
196
|
+
FL_UNSET_RAW(b, BIGNUM_SIGN_BIT);
|
197
|
+
}
|
198
|
+
}
|
199
|
+
|
200
|
+
static inline void
|
201
|
+
BIGNUM_NEGATE(VALUE b)
|
202
|
+
{
|
203
|
+
FL_REVERSE_RAW(b, BIGNUM_SIGN_BIT);
|
204
|
+
}
|
205
|
+
|
206
|
+
static inline size_t
|
207
|
+
BIGNUM_LEN(VALUE b)
|
208
|
+
{
|
209
|
+
if (! BIGNUM_EMBED_P(b)) {
|
210
|
+
return RBIGNUM(b)->as.heap.len;
|
211
|
+
}
|
212
|
+
else {
|
213
|
+
size_t ret = RBASIC(b)->flags;
|
214
|
+
ret &= BIGNUM_EMBED_LEN_MASK;
|
215
|
+
ret >>= BIGNUM_EMBED_LEN_SHIFT;
|
216
|
+
return ret;
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
static inline int
|
221
|
+
BIGNUM_LENINT(VALUE b)
|
222
|
+
{
|
223
|
+
return rb_long2int(BIGNUM_LEN(b));
|
224
|
+
}
|
225
|
+
|
226
|
+
/* LSB:BIGNUM_DIGITS(b)[0], MSB:BIGNUM_DIGITS(b)[BIGNUM_LEN(b)-1] */
|
227
|
+
static inline BDIGIT *
|
228
|
+
BIGNUM_DIGITS(VALUE b)
|
229
|
+
{
|
230
|
+
if (BIGNUM_EMBED_P(b)) {
|
231
|
+
return RBIGNUM(b)->as.ary;
|
232
|
+
}
|
233
|
+
else {
|
234
|
+
return RBIGNUM(b)->as.heap.digits;
|
235
|
+
}
|
236
|
+
}
|
237
|
+
|
238
|
+
static inline bool
|
239
|
+
BIGNUM_EMBED_P(VALUE b)
|
240
|
+
{
|
241
|
+
return FL_TEST_RAW(b, BIGNUM_EMBED_FLAG);
|
242
|
+
}
|
243
|
+
|
244
|
+
#endif /* INTERNAL_BIGNUM_H */
|