2019-11-08 13:21:29 +09:00
|
|
|
#include "internal.h"
|
2019-12-04 17:16:30 +09:00
|
|
|
#include "internal/array.h"
|
2025-04-30 13:48:02 +09:00
|
|
|
#include "internal/eval.h"
|
2019-11-07 16:58:00 +09:00
|
|
|
#include "iseq.h"
|
2019-12-04 17:16:30 +09:00
|
|
|
#include "vm_core.h"
|
2019-11-07 16:58:00 +09:00
|
|
|
#include "builtin.h"
|
2019-12-10 17:39:04 +09:00
|
|
|
|
2019-12-10 17:13:42 +09:00
|
|
|
#include "miniprelude.c"
|
2019-11-07 16:58:00 +09:00
|
|
|
|
2024-09-08 21:06:54 +09:00
|
|
|
static VALUE
|
|
|
|
prelude_ast_value(VALUE name, VALUE code, int line)
|
|
|
|
{
|
|
|
|
rb_ast_t *ast;
|
|
|
|
VALUE ast_value = rb_parser_compile_string_path(rb_parser_new(), name, code, line);
|
|
|
|
ast = rb_ruby_ast_data_get(ast_value);
|
|
|
|
if (!ast || !ast->body.root) {
|
|
|
|
if (ast) rb_ast_dispose(ast);
|
|
|
|
rb_exc_raise(rb_errinfo());
|
|
|
|
}
|
|
|
|
return ast_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pm_prelude_load(pm_parse_result_t *result, VALUE name, VALUE code, int line)
|
|
|
|
{
|
|
|
|
pm_options_line_set(&result->options, line);
|
|
|
|
VALUE error = pm_parse_string(result, code, name, NULL);
|
2019-12-10 17:39:04 +09:00
|
|
|
|
2024-09-08 21:06:54 +09:00
|
|
|
if (!NIL_P(error)) {
|
|
|
|
pm_parse_result_free(result);
|
|
|
|
rb_exc_raise(error);
|
|
|
|
}
|
|
|
|
}
|
2019-11-09 19:28:45 +09:00
|
|
|
|
2019-12-10 16:19:13 +09:00
|
|
|
static const rb_iseq_t *
|
|
|
|
builtin_iseq_load(const char *feature_name, const struct rb_builtin_function *table)
|
2019-11-07 16:58:00 +09:00
|
|
|
{
|
2019-11-09 19:28:45 +09:00
|
|
|
VALUE name_str = 0;
|
2024-09-08 21:06:54 +09:00
|
|
|
int start_line;
|
2024-05-30 14:33:12 -04:00
|
|
|
const rb_iseq_t *iseq;
|
2024-09-08 21:06:54 +09:00
|
|
|
VALUE code = rb_builtin_find(feature_name, &name_str, &start_line);
|
|
|
|
if (NIL_P(code)) {
|
|
|
|
rb_fatal("builtin_iseq_load: can not find %s; "
|
|
|
|
"probably miniprelude.c is out of date",
|
|
|
|
feature_name);
|
|
|
|
}
|
2019-11-07 16:58:00 +09:00
|
|
|
|
2024-05-30 14:33:12 -04:00
|
|
|
rb_vm_t *vm = GET_VM();
|
2021-06-14 17:32:42 -07:00
|
|
|
static const rb_compile_option_t optimization = {
|
2023-12-01 11:33:00 +01:00
|
|
|
.inline_const_cache = TRUE,
|
|
|
|
.peephole_optimization = TRUE,
|
|
|
|
.tailcall_optimization = FALSE,
|
|
|
|
.specialized_instruction = TRUE,
|
|
|
|
.operands_unification = TRUE,
|
|
|
|
.instructions_unification = TRUE,
|
|
|
|
.frozen_string_literal = TRUE,
|
|
|
|
.debug_frozen_string_literal = FALSE,
|
|
|
|
.coverage_enabled = FALSE,
|
|
|
|
.debug_level = 0,
|
2021-06-14 17:32:42 -07:00
|
|
|
};
|
2019-11-07 16:58:00 +09:00
|
|
|
|
2024-10-02 19:08:54 +09:00
|
|
|
if (rb_ruby_prism_p()) {
|
2024-05-30 14:33:12 -04:00
|
|
|
pm_parse_result_t result = { 0 };
|
2024-09-08 21:06:54 +09:00
|
|
|
pm_prelude_load(&result, name_str, code, start_line);
|
2024-05-30 14:33:12 -04:00
|
|
|
|
|
|
|
vm->builtin_function_table = table;
|
2024-11-08 14:33:48 -05:00
|
|
|
int error_state;
|
|
|
|
iseq = pm_iseq_new_with_opt(&result.node, name_str, name_str, Qnil, 0, NULL, 0, ISEQ_TYPE_TOP, &optimization, &error_state);
|
2024-05-30 14:33:12 -04:00
|
|
|
|
2024-09-08 21:06:54 +09:00
|
|
|
vm->builtin_function_table = NULL;
|
2024-05-30 14:33:12 -04:00
|
|
|
pm_parse_result_free(&result);
|
2024-11-08 14:33:48 -05:00
|
|
|
|
|
|
|
if (error_state) {
|
|
|
|
RUBY_ASSERT(iseq == NULL);
|
|
|
|
rb_jump_tag(error_state);
|
|
|
|
}
|
2024-05-30 14:33:12 -04:00
|
|
|
}
|
|
|
|
else {
|
2024-09-08 21:06:54 +09:00
|
|
|
VALUE ast_value = prelude_ast_value(name_str, code, start_line);
|
2024-05-30 14:33:12 -04:00
|
|
|
rb_ast_t *ast = rb_ruby_ast_data_get(ast_value);
|
|
|
|
|
|
|
|
vm->builtin_function_table = table;
|
|
|
|
iseq = rb_iseq_new_with_opt(ast_value, name_str, name_str, Qnil, 0, NULL, 0, ISEQ_TYPE_TOP, &optimization, Qnil);
|
|
|
|
|
2024-09-08 21:06:54 +09:00
|
|
|
vm->builtin_function_table = NULL;
|
2024-05-30 14:33:12 -04:00
|
|
|
rb_ast_dispose(ast);
|
|
|
|
}
|
2019-11-07 16:58:00 +09:00
|
|
|
|
vm_invoke_builtin_delegate with start index.
opt_invokebuiltin_delegate and opt_invokebuiltin_delegate_leave
invokes builtin functions with same parameters of the method.
This technique eliminate stack push operations. However, delegation
parameters should be completely same as given parameters.
(e.g. `def foo(a, b, c) __builtin_foo(a, b, c)` is okay, but
__builtin_foo(b, c) is not allowed)
This patch relaxes this restriction. ISeq has a local variables
table which includes parameters. For example, the method defined
as `def foo(a, b, c) x=y=nil`, then local variables table contains
[a, b, c, x, y]. If calling builtin-function with arguments which
are sub-array of the lvar table, use opt_invokebuiltin_delegate
instruction with start index. For example, `__builtin_foo(b, c)`,
`__builtin_bar(c, x, y)` is okay, and so on.
2019-11-15 17:49:49 +09:00
|
|
|
// for debug
|
|
|
|
if (0 && strcmp("prelude", feature_name) == 0) {
|
|
|
|
rb_io_write(rb_stdout, rb_iseq_disasm((const rb_iseq_t *)iseq));
|
|
|
|
}
|
|
|
|
|
2024-09-08 21:02:30 +09:00
|
|
|
BUILTIN_LOADED(feature_name, iseq);
|
2019-11-07 16:58:00 +09:00
|
|
|
|
2019-12-10 16:19:13 +09:00
|
|
|
return iseq;
|
|
|
|
}
|
|
|
|
|
2025-04-30 13:48:02 +09:00
|
|
|
static void
|
|
|
|
load_with_builtin_functions(const char *feature_name, const struct rb_builtin_function *table)
|
|
|
|
{
|
|
|
|
const rb_iseq_t *iseq = builtin_iseq_load(feature_name, table);
|
|
|
|
rb_namespace_enable_builtin();
|
|
|
|
rb_iseq_eval_with_refinement(iseq, rb_mNamespaceRefiner);
|
|
|
|
rb_namespace_disable_builtin();
|
|
|
|
}
|
|
|
|
|
2019-12-10 16:19:13 +09:00
|
|
|
void
|
|
|
|
rb_load_with_builtin_functions(const char *feature_name, const struct rb_builtin_function *table)
|
|
|
|
{
|
2025-04-30 13:48:02 +09:00
|
|
|
const rb_iseq_t *iseq;
|
|
|
|
if (rb_namespace_available() && rb_mNamespaceRefiner) {
|
|
|
|
load_with_builtin_functions(feature_name, table);
|
2025-05-08 23:38:00 +09:00
|
|
|
}
|
|
|
|
else {
|
2025-04-30 13:48:02 +09:00
|
|
|
iseq = builtin_iseq_load(feature_name, table);
|
|
|
|
rb_iseq_eval(iseq);
|
|
|
|
}
|
2019-11-07 16:58:00 +09:00
|
|
|
}
|